func runtime.isSystemGoroutine

10 uses

	runtime (current package)
		heapdump.go#L358: 	dumpbool(isSystemGoroutine(gp, false))
		mprof.go#L1430: 		if readgstatus(fing) != _Gdead && !isSystemGoroutine(fing, false) {
		mprof.go#L1543: 	if isSystemGoroutine(gp1, false) {
		mprof.go#L1589: 		return gp1 != gp && readgstatus(gp1) != _Gdead && !isSystemGoroutine(gp1, false)
		proc.go#L4340: 	if isSystemGoroutine(gp, false) {
		proc.go#L5100: 	if isSystemGoroutine(newg, false) {
		proc.go#L6028: 		if isSystemGoroutine(gp, false) {
		proc.go#L6519: 		return isSystemGoroutine(gp, true)
		traceback.go#L1266: 		if gp == me || gp == curgp || readgstatus(gp) == _Gdead || isSystemGoroutine(gp, false) && level < 2 {
		traceback.go#L1339: func isSystemGoroutine(gp *g, fixed bool) bool {